home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
smallc.arc
/
UNLINK.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1985-07-17
|
256 b
|
13 lines
#include "io.h"
unlink(name)
char *name;
{
struct fcb delfcb;
fcbinit(name,&delfcb);
return bdos(DELFIL,&delfcb);
}